home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-progress.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  2KB  |  57 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5. Copyright 2005-2007 Foxmarks Inc.
  6.  
  7. foxmarks-progress.xul: implements the small window that appears when
  8. performing a synch, upload, download, or merge operation.
  9.  
  10. -->
  11.  
  12. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  13.  
  14. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/foxmarks.dtd">
  15.  
  16. <dialog id="foxmarks-progress" title="&progress.title;"
  17.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  18.     windowtype="foxmarks:progress"
  19.     buttons="cancel"
  20.     ondialogcancel="return onProgressCancel();"
  21.     onload="onProgressLoad()"
  22.     onunload="onProgressUnload()"
  23.     persist="screenX screenY" 
  24.     style="width: &progress.width;em;">
  25.  
  26.     <script src="foxmarks-progress.js" />
  27.     <script src="foxmarks-settings.js" />
  28.     <script src="foxmarks-log.js" />
  29.  
  30.     <vbox flex="1">
  31.         <label value="&progress.title;" 
  32.             style="font-size: 1.0em; font-family:arial,sans-serif; font-weight: bold;" />
  33.         <progressmeter mode="undetermined" />
  34.         <hbox id="lineitems">
  35.             <vbox>
  36.                 <image id="bookmarks-check"
  37.                     style="width: 34px; height: 22px; margin: 4px 4px;" />
  38.                 <image id="passwords-check"
  39.                     style="width: 34px; height: 22px; margin: 4px 4px;" />
  40.             </vbox>
  41.             <vbox>
  42.                 <label value="&label.sync.bookmarks;"
  43.                     style="font-size: 12px;font-family:arial,sans-serif; margin: 8px 4px;"/>
  44.                 <label value="&label.sync.passwords;" 
  45.                     style="font-size: 12px;font-family:arial,sans-serif; margin: 8px 4px;"/>
  46.             </vbox>
  47.             <vbox flex="1" align="end">
  48.                 <label id="bookmarks" 
  49.                     style="font-size: 12px;font-family:arial,sans-serif; padding: 8px 4px;"/>
  50.                 <label id="passwords"
  51.                     style="font-size: 12px;font-family:arial,sans-serif; padding: 8px 4px;"/>
  52.             </vbox>
  53.  
  54.         </hbox>
  55.     </vbox>
  56. </dialog>
  57.